cy.get(selector): Selects elements matching the given CSS selector.
cy.contains(text): Finds elements containing the specified text.
cy.find(selector): Finds descendant elements of the current subject.
cy.children(): Gets the children of each element in the set of matched elements.
cy.parent(): Gets the parent of each element in the set of matched elements.
cy.eq(index): Selects the element at the specified index.
cy.first() / cy.last(): Selects the first or last element in a set.
cy.prev() / cy.next(): Gets the previous or next sibling element.
cy.siblings(): Gets all sibling elements.
cy.root(): Gets the root DOM element.
cy.document(): Gets the document object.
cy.window(): Gets the window object.
cy.title(): Gets the page title.
cy.url(): Gets the current URL.
cy.location(): Gets the location object.
cy.hash(): Gets the current URL hash.
cy.invoke(functionName): Invokes a function on the current subject.
cy.its(propertyName): Gets a property of the current subject.
cy.wrap(value): Wraps a value into a Cypress chainable object.